home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 10 / AACD 10.iso / AACD / Resources / CDROM / Amiga_MO_FAQ / DOSDrivers-3½ / PC / PC128 < prev    next >
Text File  |  1999-03-21  |  991b  |  38 lines

  1. /* $VER: PC128 40.3 (21.3.99)
  2.  *
  3.  * 128MB MO file system entry, for AT-HD type MS-DOS disks.
  4.  *
  5.  * This file enables CrossDOSFileSystem on a 128MB MO disk cartridge that
  6.  * contains a single partition.
  7.  *
  8.  */
  9.  
  10. /* 128MB MO disks have 248826 512-byte sectors. But 7776*32 = 248832, which is
  11.  * greater than 248826. Is this correct? I assume this is the normal situation
  12.  * for AT-HD type 128MB MO disks. */
  13.  
  14. FileSystem    = L:CrossDOSFileSystem
  15. Flags        = 0
  16. Surfaces    = 1
  17. BlocksPerTrack    = 32
  18. SectorsPerBlock    = 1
  19. SectorSize    = 512
  20. Mask        = 0x7FFFFFFE    /* Change to suit your system and SCSI controller */
  21. MaxTransfer    = 0xFFFFFFFE    /* Change to suit your system and SCSI controller */
  22. Reserved    = 2
  23. Interleave    = 0
  24. LowCyl        = 1
  25. HighCyl        = 7775
  26. Buffers        = 128        /* Number of 512-byte filesystem buffers */
  27. BufMemType    = 1
  28. DosType        = 0x4D534400
  29. StackSize    = 4000
  30. Priority    = 10
  31. GlobVec        = -1
  32.  
  33. /* The Device and Unit fields are controlled by tooltypes in the PC128 icon.
  34.  *
  35.  * Device    = scsi.device
  36.  * Unit        = 4
  37.  */
  38.